home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1996 #14
/
Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO
/
prog_bas
/
easynet.zip
/
DEMO.ZIP
/
TASK.FRM
< prev
next >
Wrap
Text File
|
1995-12-26
|
4KB
|
126 lines
VERSION 4.00
Begin VB.Form frmTask
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Dialog
Caption = "Actor"
ClientHeight = 1710
ClientLeft = 2115
ClientTop = 2385
ClientWidth = 5820
BeginProperty Font
name = "MS Sans Serif"
charset = 1
weight = 700
size = 8.25
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 2115
Left = 2055
LinkTopic = "Form1"
ScaleHeight = 1710
ScaleWidth = 5820
Top = 2040
Width = 5940
Begin VB.TextBox Text2
Appearance = 0 'Flat
Height = 375
Left = 1650
TabIndex = 1
Top = 780
Width = 2535
End
Begin VB.CommandButton Command2
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "&Cancel"
Height = 405
Left = 4560
TabIndex = 3
Top = 750
Width = 955
End
Begin VB.CommandButton Command1
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "&Ok"
Default = -1 'True
Height = 405
Left = 4560
TabIndex = 2
Top = 300
Width = 955
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
Height = 375
Left = 1650
TabIndex = 0
Top = 300
Width = 2535
End
Begin VB.Label Label2
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "Role name:"
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 400
size = 9.75
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 345
Left = 240
TabIndex = 5
Top = 840
Width = 1215
End
Begin VB.Label Label1
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "Actor name:"
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 400
size = 9.75
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 315
Left = 240
TabIndex = 4
Top = 360
Width = 1245
End
End
Attribute VB_Name = "frmTask"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Actor = Text1.Text
Role = Text2.Text
Unload Me
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Text1.Text = Actor
Text2.Text = Role
End Sub